Encoding:

P32A

001000

rt

rs

sa

SHLL.PH

00

1110110

101

P32A

001000

rt

rs

sa

SHLL_S.PH

10

1110110

101

6

5

5

4

2

7

3

Format:

SHLL[_S].PH 

Shift Left Logical Vector Pair Halfwords

SHLL.PH   rt, rs, sa

DSP

Shift Left Logical Vector Pair Halfwords

SHLL_S.PH rt, rs, sa

DSP

Shift Left Logical Vector Pair Halfwords

Purpose:

Shift Left Logical Vector Pair Halfwords

Element-wise shift of two independent halfwords in a vector data type by a fixed number of bits, with optional saturation.

Description:

rt = sat16(rs31..16 << sa) || (rs15..0 << sa)

The two halfword values in register rs are each independently shifted left, inserting zeros into the least-significant bit positions emptied by the shift. In the saturating version of the instruction, if the shift results in an overflow the intermediate result is saturated to either the maximum positive or the minimum negative 16-bit value, depending on the sign of the original unshifted value. The two independent results are then written to the corresponding halfword elements of destination register rt.

This instruction writes a 1 to bi t 22 in the DSPControl register in the ouflag field if any of the left shift operations results in an overflow or saturation.

Restrictions:

No data-dependent exceptions are possible.

The operands must be values in the specified format. If they are not, the results are UNPREDICTABLE and the values of the operand vectors become UNPREDICTABLE.

Operation:

SHLL.PH
   ValidateAccessToDSPResources()
   tempB15..0 = shift16Left( GPR[rs]31..16, sa )
   tempA15..0 = shift16Left( GPR[rs]15..0, sa )
   GPR[rt]31..0 = tempB15..0 || tempA15..0
SHLL_S.PH
   ValidateAccessToDSPResources()
   tempB15..0 = sat16ShiftLeft( GPR[rs]31..16, sa )
   tempA15..0 = sat16ShiftLeft( GPR[rs]15..0, sa )
   GPR[rt]31..0 = tempB15..0 || tempA15..0
function shift16Left( a15..0, s3..0 )
   if ( s3..0 = 0 ) then
      temp15..0 = a15..0
   else
      sign = a15
      temp15..0 = ( a15-s..0 || 0s )
      discart15..0 = ( sign(16-s) || a14..14-(s-1) )
         DSPControlouflag:22 = 1
      endif
   endif
   return temp15..0
endfunction shift16Left
function sat16ShiftLeft( a15..0, s3..0 )
   if ( s3..0 = 0 ) then
      temp15..0 = a15..0
   else
      sign = a15
      temp15..0 = ( a15-s..0 || 0s )
      discard15..0 = ( sign(16-s) || a14..14-(s-1) )
      if (( discard15..0 != 0x0000 ) and ( discard15..0 != 0xFFFF )) then
          temp15..0 = ( sign = 0 ? 0x7FFF : 0x8000 )
          DSPControlouflag:22 = 1
      endif
   endif
   return temp15..0
endfunction sat16ShiftLeft

Exceptions:

Reserved Instruction, DSP Disabled